From: Bill Wohler Date: Sun, 10 Jul 2011 22:31:33 +0000 (-0700) Subject: * mh-mime.el (mh-decode-message-subject): Fix case of Subject. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2957 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9ed211b275b9ffcbd5a96152c72f2deb433e7024;p=emacs.git * mh-mime.el (mh-decode-message-subject): Fix case of Subject. --- diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index 25554b7822e..bc5080a5d30 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el @@ -511,7 +511,7 @@ decoding the same message multiple times." (when mh-decode-mime-flag (save-excursion (let ((buffer-read-only nil)) - (rfc2047-decode-region (progn (mh-goto-header-field "subject:") (point)) + (rfc2047-decode-region (progn (mh-goto-header-field "Subject:") (point)) (progn (mh-header-field-end) (point))))))) ;;;###mh-autoload